diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2014-08-24 00:20:36 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2014-08-24 00:20:36 +0000 |
commit | 174127b01ef19ede414294bc5e9375db0c671f9c (patch) | |
tree | 0d30e7c3a0875aa02463a45d33b0bed8afd6e40c /GNUmakefile | |
parent | d90b2724114cb6e9696e7648a20acf3d71c4a14b (diff) | |
download | netpbm-mirror-174127b01ef19ede414294bc5e9375db0c671f9c.tar.gz netpbm-mirror-174127b01ef19ede414294bc5e9375db0c671f9c.tar.xz netpbm-mirror-174127b01ef19ede414294bc5e9375db0c671f9c.zip |
Fix build of pm_config.h for systems that don't need any inttypes.h-like thing
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2252 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index b0b7f005..80d4b5b0 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -148,7 +148,7 @@ pm_config.h: \ echo '#ifndef PM_CONFIG_H' >>$@ echo '#define PM_CONFIG_H' >>$@ ifeq ($(INTTYPES_H)x,x) - echo '/* Don't need to #include any inttypes.h-type thing */ + echo '/* Dont need to #include any inttypes.h-type thing */' >>$@ else ifeq ($(INTTYPES_H),"inttypes_netpbm.h") cat inttypes_netpbm.h >>$@ |